home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
130 MIDI Tool Box
/
130 MIDI Tool Box.iso
/
mpu401c
/
mpudget.c
< prev
next >
Wrap
C/C++ Source or Header
|
1986-11-02
|
334b
|
21 lines
/* Copyright (C) 1986 by M. J. Shannon, Jr.
** Permission to distribute for non-commercial uses granted as long as this
** notice is retained. Violators will be prosecuted.
*/
#include "mpu.h"
int
mpu_dget()
{
int data = -1;
if (!mpu_dsr())
{
cli();
data = inp(MPUP_DATA);
sti();
}
return (data);
}